The board specific headers are triggered by global variables ($Board,$fheader) being set before the call to send_header.
To have IIP send a specific header we need to define these variables before calling the function.
Example -
In your IIP index.php file find these lines:
<br /> // send the header<br /> $config['iip_call'] = "1";<br /> $html = new html;<br /> $html -> send_header($config['title'],$Cat,0,$user);<br /> list($tbopen,$tbclose) = $html -> table_wrapper();<br />
and change them to these -
<br /> // send the header<br /> $Board = "iip";<br /> $fheader = "1";<br /> $config['iip_call'] = "1";<br /> $html = new html;<br /> $html -> send_header($config['title'],$Cat,0,$user);<br /> list($tbopen,$tbclose) = $html -> table_wrapper();<br />
When $fheader is set it signals the send_header function to use the $Board header which should be named header_iip.php and be located in your /includes directory.
I haven't tested this but as far as I can tell it should work. Hope this helps.
